home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 70 / Cine Live 70.iso / pc / Scripts / ToolsCache.k < prev    next >
Encoding:
Text File  |  2002-10-04  |  1.3 KB  |  72 lines

  1. module oCachePlugin is cPlugin
  2. has
  3.     release Editor:
  4.         GetIO()
  5.             do
  6.                 result := oIOCachePlugin;
  7.             end;
  8.     end;
  9. end;
  10.  
  11. release Editor:
  12.  
  13. object oIOCacheLabel is "Cache";
  14.  
  15. object oIOCachePlugin is cIOPlugin
  16. with
  17.     AboutDialog is cUIAboutPluginDialog
  18.     with
  19.         HelpURL is "Cache/index.htm";
  20.         Label is oIOCacheLabel;
  21.         Text is "Cache element, events and commands.";
  22.     end;
  23.     ToolLines is [
  24.         cIOToolListLine 
  25.         with 
  26.             Expanded is true;
  27.             Label is oIOCacheLabel;
  28.             Lines is [
  29.                 cIOToolLine
  30.                 with
  31.                     Words is [
  32.                         oCacheLoaderCreator
  33.                     ];
  34.                 end
  35.             ];
  36.         end
  37.     ];
  38.     ElementLines is [
  39.         cIOSeedListLine 
  40.         with 
  41.             Label is oIOCacheLabel;
  42.             Lines is [
  43.                 cIOSeedLine with IO is oIOCacheLoader; end
  44.             ];
  45.         end
  46.     ];
  47.     EventLines is [
  48.         cIOSeedListLine 
  49.         with 
  50.             Label is oIOCacheLabel;
  51.             Lines is [
  52.                 cIOSeedLine with IO is oIOCacheUpdatedEvent; end,
  53.                 cIOSeedLine with IO is oIOCacheUpdatingEvent; end
  54.             ];
  55.         end
  56.     ];
  57.     CommandLines is [
  58.         cIOSeedListLine 
  59.         with 
  60.             Label is oIOCacheLabel;
  61.             Lines is [
  62.                 cIOSeedLine with IO is oIOCreateCacheCommand; end,
  63.                 cIOSeedLine with IO is oIODeleteCacheCommand; end,
  64.                 cIOSeedLine with IO is oIOPurgeCacheCommand; end,
  65.                 cIOSeedLine with IO is oIOUpdateCacheCommand; end
  66.             ];
  67.         end
  68.     ];
  69. end;
  70.  
  71. end;
  72.